ihttpactionresult to object c#

37

ihttpactionresult to object c# -

[TestMethod]
public void TestGet()
{
    IHttpActionResult actionResult = controller.Get();
    var contentResult = actionResult as OkNegotiatedContentResult<string>;
    Assert.AreEqual("", contentResult.Content);
}

Comments

Submit
0 Comments